.uk-europe-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.uk-europe-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 15px;
    margin-bottom: 50px;
    color: #444;
}

.breadcrumb a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

/* Title */
.page-title {
    font-family: 'Georgia', serif;
    font-size: 64px;
    font-weight: 500;
    text-align: center;
    color: #111;
    margin-bottom: 50px;
}

/* Content */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.page-content p {
    font-size: 19px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 35px;
}

/* ===================== */
/* Tablet */
@media (max-width: 992px) {
    .page-title {
        font-size: 48px;
    }

    .page-content p {
        font-size: 18px;
    }
}

/* ===================== */
/* Mobile */
@media (max-width: 480px) {

    .uk-europe-section {
        padding: 60px 15px;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .page-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
}  

.package-section {
    background: #f3f3f3;
    padding: 80px 20px;
}

.package-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.package-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Image */
.package-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Content */
.package-content {
    padding: 40px 35px 50px;
}

.package-content h3 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #222;
}

.divider {
    width: 50px;
    height: 2px;
    background: #c7a54a;
    margin: 0 auto 25px;
}

.package-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Button */
.explore-btn {
    display: inline-block;
    background: #c7a54a;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: #b89333;
}

/* ================== */
/* Tablet */
@media (max-width: 992px) {
    .package-container {
        grid-template-columns: 1fr;
    }

    .package-image img {
        height: 350px;
    }
}

/* ================== */
/* Mobile 375px */
@media (max-width: 480px) {
    .package-section {
        padding: 60px 15px;
    }

    .package-content {
        padding: 30px 20px 40px;
    }

    .package-content h3 {
        font-size: 24px;
    }

    .package-content p {
        font-size: 15px;
    }

    .explore-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* Section Background */
.cta-booking {
    background: #f3f3f3;
    padding: 80px 20px;
}

/* Inner Box */
.cta-wrapper {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    background: #f7f7f7;
    padding: 60px 40px;
    border-top: 4px solid #c7a54a;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Heading */
.cta-wrapper h2 {
    font-family: 'Georgia', serif;
    font-size: 40px;
    font-weight: 500;
    color: #222;
    margin-bottom: 20px;
}

.cta-wrapper h2 em {
    font-style: italic;
}

/* Paragraph */
.cta-wrapper p {
    font-size: 18px;
    color: #444;
    margin-bottom: 35px;
}

.cta-wrapper p a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* Button */
.cta-button {
    display: inline-block;
    background: #c7a54a;
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #b89333;
}

/* ======================= */
/* Tablet */
@media (max-width: 992px) {
    .cta-wrapper h2 {
        font-size: 32px;
    }
}

/* ======================= */
/* Mobile (375px) */
@media (max-width: 480px) {
    .cta-booking {
        padding: 60px 15px;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta-wrapper h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .cta-wrapper p {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}